home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Tutorial / Cookbook / makeclean.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1995-06-12  |  351b  |  22 lines

  1. #!/bin/sh
  2.  
  3. # shell script for removing all extra files
  4. # should be run before re tar and compress for
  5. # sending over modems
  6. # WARNING! this removes all backup files (files that start with "~"
  7. for i in *
  8. do
  9.     if [ -d $i ]
  10.     then
  11.         cd "$i"
  12.         if [ -f Makefile ]
  13.         then
  14.             echo "makeing clean in $i"
  15.             make clean
  16.             ls *~
  17.             rm -f *~
  18.         fi
  19.         cd ..
  20.     fi
  21. done
  22.